{% extends "_layout.html" %} {% from "_macros.html" import summary_table, row %} {% block title %}You're now on {{ plan_name }} — {{ project_name }}{% endblock %} {% block preheader %}Your plan changed to {{ plan_name }}. Receipt + renewal details inside.{% endblock %} {% block heading %}You’re now on {{ plan_name }}.{% endblock %} {% block body %}
Your plan switched to {{ plan_name }}. Stripe prorated the change, so you’re only billed for the time you spend on each tier.
The new tier’s features are live in your dashboard right now.
{% endblock %} {% block summary %} {% call summary_table() %} {{ row("New plan", plan_name) }} {{ row("Effective", period_start_human) }} {{ row("Next renewal", period_end_human) }} {{ row("Charged today", amount_formatted, emphasis=True) }} {% endcall %} {% endblock %} {% block cta_label %}Manage billing{% endblock %} {% block footer_note %}Need to switch again or cancel? Both are one-click from Settings · Billing.
{% endblock %}